(Fwrite_region): !NILP -> CONSP.
authorStefan Monnier <monnier@iro.umontreal.ca>
Wed, 11 Feb 2009 03:52:56 +0000 (03:52 +0000)
committerStefan Monnier <monnier@iro.umontreal.ca>
Wed, 11 Feb 2009 03:52:56 +0000 (03:52 +0000)
src/ChangeLog
src/fileio.c

index f03fc56098c2d0ca1507b7c089e3371873b23adc..4e1fcbcd9fe865f8493f06079ad4bbcfa821f140 100644 (file)
@@ -1,3 +1,7 @@
+2009-02-11  Stefan Monnier  <monnier@iro.umontreal.ca>
+
+       * fileio.c (Fwrite_region): !NILP -> CONSP.
+
 2009-02-10  Andreas Schwab  <schwab@suse.de>
 
        * process.c (send_process): Properly relocate pointer into data
index 5f91da5358526c7a503a30ac43a69beddaea1d8f..5b96949dcc4c3eeea15c9101e8235be06a721d82 100644 (file)
@@ -4651,7 +4651,7 @@ This calls `write-region-annotate-functions' at the start, and
   specpdl_ptr = specpdl + count1;
 
   /* Call write-region-post-annotation-function. */
-  while (!NILP (Vwrite_region_annotation_buffers))
+  while (CONSP (Vwrite_region_annotation_buffers))
     {
       Lisp_Object buf = XCAR (Vwrite_region_annotation_buffers);
       if (!NILP (Fbuffer_live_p (buf)))